Remove duplicated __cacheline_aligned attribute from irq_desc arrays
authorKeir Fraser <keir.fraser@citrix.com>
Wed, 22 Oct 2008 15:41:33 +0000 (16:41 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Wed, 22 Oct 2008 15:41:33 +0000 (16:41 +0100)
Remove duplicated __cacheline_aligned attribute, as it's
already included in type declaration.

Signed-off-by: Kevin Tian <kevin.tian@intel.com>
xen/arch/ia64/xen/irq.c
xen/arch/x86/smpboot.c

index 2c250148c52b7cedcb94bbba9e14f8d05a257c41..4b79df4ade14fcbccde04ee82cb5d4c16ad365dc 100644 (file)
@@ -74,7 +74,7 @@ unsigned int __ia64_local_vector_to_irq (ia64_vector vec)
 /*
  * Controller mappings for all interrupt sources:
  */
-irq_desc_t irq_desc[NR_IRQS] __cacheline_aligned = {
+irq_desc_t irq_desc[NR_IRQS] = {
        [0 ... NR_IRQS-1] = {
                .status = IRQ_DISABLED,
                .handler = &no_irq_type,
index d7360ec29c8e6922e971de987d2ed58adaf5d582..4fe7d5181c4f5bc97fe23965460b68019944f65d 100644 (file)
@@ -101,7 +101,7 @@ static cpumask_t smp_commenced_mask;
 static int __devinitdata tsc_sync_disabled;
 
 /* Per CPU bogomips and other parameters */
-struct cpuinfo_x86 cpu_data[NR_CPUS] __cacheline_aligned;
+struct cpuinfo_x86 cpu_data[NR_CPUS];
 EXPORT_SYMBOL(cpu_data);
 
 u32 x86_cpu_to_apicid[NR_CPUS] __read_mostly =